What is env-var?
The env-var npm package is a utility for accessing and validating environment variables in Node.js applications. It provides a simple and consistent API for retrieving environment variables, ensuring they meet specified criteria, and handling default values.
What are env-var's main functionalities?
Accessing Environment Variables
This feature allows you to access environment variables and convert them to the desired type. In this example, the 'PORT' environment variable is retrieved and converted to a positive integer.
const env = require('env-var');
const port = env.get('PORT').asIntPositive();
console.log(`Server running on port: ${port}`);
Default Values
This feature allows you to specify default values for environment variables. If the 'HOST' environment variable is not set, it defaults to 'localhost'.
const env = require('env-var');
const host = env.get('HOST').default('localhost').asString();
console.log(`Server running on host: ${host}`);
Validation
This feature ensures that certain environment variables are set and meet specified criteria. In this example, the 'API_KEY' environment variable is required and must be a string.
const env = require('env-var');
const apiKey = env.get('API_KEY').required().asString();
console.log(`API Key: ${apiKey}`);
Custom Validators
This feature allows you to define custom validation logic for environment variables. In this example, the 'CUSTOM_VAR' environment variable must start with 'custom-'.
const env = require('env-var');
const customValidator = (value) => value.startsWith('custom-');
const customVar = env.get('CUSTOM_VAR').required().asString().validate(customValidator);
console.log(`Custom Var: ${customVar}`);
Other packages similar to env-var
dotenv
dotenv is a popular package for loading environment variables from a .env file into process.env. It does not provide validation or type conversion features like env-var, but it is widely used for managing environment variables in development.
joi
joi is a powerful schema description language and data validator for JavaScript. While it is not specifically designed for environment variables, it can be used to validate them. It offers more complex validation rules compared to env-var.
convict
convict is a configuration management tool for Node.js that allows you to define a schema for your configuration, including environment variables. It provides validation and default values, similar to env-var, but also supports nested configurations and different configuration sources.
env-var
- 🏋 Lightweight. Zero dependencies and just ~4.7kB when minified!
- 🧹 Clean and simple code, as shown here.
- 🚫 Fails fast if your environment is misconfigured.
- 👩💻 Friendly error messages and example values for better debugging experience.
- 🎉 TypeScript support provides compile time safety and better developer experience.
- 📦 Support for frontend projects, e.g in React, React Native, Angular, etc.
Contents
Install
npm
npm install env-var
yarn
yarn add env-var
Getting started
You can use env-var
in both JavaScript and TypeScript!
Node.js Javascript example
const env = require('env-var');
const PASSWORD = env.get('DB_PASSWORD')
.required()
.convertFromBase64()
.asString();
const PORT = env.get('PORT').default('5432').asPortNumber()
Node.js TypeScript example
import * as env from 'env-var';
const PORT: number = env.get('PORT').required().asIntPositive();
WebApp Example
When using environment variables in a web application, usually your tooling
such as vite
imposes special conventions and doesn't expose process.env
.
Use from
function to workaround this, and create an env
object like so:
import { from } from 'env-var'
const env = from({
BASE_URL: import.meta.env.BASE_URL,
VITE_CUSTOM_VARIABLE: import.meta.env.CUSTOM_VARIABLE
})
For more examples, refer to the /example
directory and EXAMPLE.md. A summary of the examples available in /example
is written in the 'Other examples' section of EXAMPLE.md.
API
The examples above only cover a very small set of env-var
API calls. There are many others such as asFloatPositive()
, asJson()
and asRegExp()
. For a full list of env-var
API calls, check out API.md.
You can also create your own custom accessor; refer to the 'extraAccessors' section of API.md.
Logging
Logging is disabled by default in env-var
to prevent accidental logging of secrets.
To enable logging, you need to create an env-var
instance using the from()
function that the API provides and pass in a logger.
- A built-in logger is available, but a custom logger is also supported.
- Always exercise caution when logging environment variables!
Using the Built-in Logger
The built-in logger will print logs only when NODE_ENV
is not set to either prod
or production
.
const { from, logger } = require('env-var')
const env = from(process.env, {}, logger)
const API_KEY = env.get('API_KEY').required().asString()
This is an example output from the built-in logger generated by running example/logging.js:

Using a Custom Logger
If you need to filter env-var
logs based on log levels (e.g. trace logging only) or have your own preferred logger, you can use a custom logging solution such as pino
easily.
See the 'Custom logging' section of EXAMPLE.md for more information.
Optional integration with dotenv
You can optionally use dotenv with env-var.
There is no coupling between dotenv
and env-var
, but you can easily use them both together. This loose coupling reduces package bloat and allows you to start or stop using one without being forced to do the same for the other.
See the 'dotenv' section of EXAMPLE.md for more information.
Contributing
Contributions are welcomed and discussed in CONTRIBUTING.md. If you would like to discuss an idea, open an issue or a PR with an initial implementation.
Contributors
- @aautio
- @avocadomaster
- @caccialdo
- @ChibiBlasphem
- @DigiPie
- @dror-weiss
- @evanshortiss
- @gabrieloczkowski
- @hhravn
- @ineentho
- @itavy
- @jerome-fox
- @joh-klein
- @Lioness100
- @MikeyBurkman
- @pepakriz
- @rmblstrp
- @shawnmclean
- @todofixthis
- @xuo